home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Source.bin / ResBundle.java < prev    next >
Text File  |  1998-09-09  |  708b  |  26 lines

  1. package symantec.itools.resources;
  2.  
  3. import java.util.ListResourceBundle;
  4.  
  5. public class ResBundle extends ListResourceBundle {
  6.    public Object[][] getContents() {
  7.        return contents;
  8.    }
  9.    static final Object[][] contents = {
  10.        // ScrollingTextBeanInfo
  11.        {"put", "put"},
  12.        {"some", "some"},
  13.        {"text", "text"},
  14.        {"in", "in"},
  15.        {"here", "here"},
  16.        // End ScrollingTextBeanInfo
  17.  
  18.        // Wizard
  19.        {"wizard_label_previous", "< Back"},
  20.        {"wizard_label_next",     "Next >"},
  21.        {"wizard_label_finish",   "Finish"},
  22.        {"wizard_label_cancel",   "Cancel"},
  23.        {"wizard_label_help",     "Help"},
  24.        // End Wizard
  25.    };
  26. }